home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / 041-050 / amok44 / m2ced / txt / keys.def < prev    next >
Text File  |  1993-11-04  |  605b  |  23 lines

  1. (**********************************************************************
  2.  
  3.     :Program.    Keys.def
  4.     :Contents.   Wait for hotkey
  5.     :Author.     Steffen Reith
  6.     :Address.    Hessenstr. 64, D-8700 Würzburg
  7.     :Copyright.  Shareware
  8.     :Language.   Modula-2
  9.     :Translator. M2Amiga A+L V3.2d
  10.     :Imports.    None
  11.     :History.    V1.0  7.June 1990
  12.  
  13. **********************************************************************)
  14. DEFINITION MODULE Keys;
  15.  
  16. TYPE Action=(compile,link,start,load,findError,cancel,continue);
  17.  
  18. PROCEDURE KeyPressed():Action;
  19. (*:Result.     Which hotkey was pressed
  20. *)
  21.  
  22. END Keys.
  23.